home *** CD-ROM | disk | FTP | other *** search
/ PC World Komputer 2010 April / PCWorld0410.iso / hity wydania / Ubuntu 9.10 PL / karmelkowy-koliberek-desktop-9.10-i386-PL.iso / casper / filesystem.squashfs / usr / share / system-config-printer / troubleshoot / Shrug.py < prev    next >
Text File  |  2009-10-19  |  3KB  |  82 lines

  1. #!/usr/bin/env python
  2.  
  3. ## Printing troubleshooter
  4.  
  5. ## Copyright (C) 2008 Red Hat, Inc.
  6. ## Copyright (C) 2008 Tim Waugh <twaugh@redhat.com>
  7.  
  8. ## This program is free software; you can redistribute it and/or modify
  9. ## it under the terms of the GNU General Public License as published by
  10. ## the Free Software Foundation; either version 2 of the License, or
  11. ## (at your option) any later version.
  12.  
  13. ## This program is distributed in the hope that it will be useful,
  14. ## but WITHOUT ANY WARRANTY; without even the implied warranty of
  15. ## MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  16. ## GNU General Public License for more details.
  17.  
  18. ## You should have received a copy of the GNU General Public License
  19. ## along with this program; if not, write to the Free Software
  20. ## Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
  21.  
  22. from base import *
  23. class Shrug(Question):
  24.     def __init__ (self, troubleshooter):
  25.         Question.__init__ (self, troubleshooter, "Shrug")
  26.         page = self.initial_vbox (_("Sorry!"),
  27.                                   _("I have not been able to work out what "
  28.                                     "the problem is, but I have collected "
  29.                                     "some useful information to put in a "
  30.                                     "bug report."))
  31.  
  32.         expander = gtk.Expander (_("Diagnostic Output (Advanced)"))
  33.         expander.set_expanded (False)
  34.         sw = gtk.ScrolledWindow ()
  35.         expander.add (sw)
  36.         textview = gtk.TextView ()
  37.         textview.set_editable (False)
  38.         sw.add (textview)
  39.         page.pack_start (expander)
  40.         self.buffer = textview.get_buffer ()
  41.  
  42.         box = gtk.HButtonBox ()
  43.         box.set_border_width (0)
  44.         box.set_spacing (3)
  45.         box.set_layout (gtk.BUTTONBOX_END)
  46.         page.pack_start (box, False, False, 0)
  47.  
  48.         self.save = gtk.Button (stock='gtk-save')
  49.         box.pack_start (self.save, False, False, 0)
  50.  
  51.         troubleshooter.new_page (page, self)
  52.  
  53.     def display (self):
  54.         self.buffer.set_text (self.troubleshooter.answers_as_text ())
  55.         return True
  56.  
  57.     def connect_signals (self, handler):
  58.         self.save_sigid = self.save.connect ('clicked', self.on_save_clicked)
  59.  
  60.     def disconnect_signals (self):
  61.         self.save.disconnect (self.save_sigid)
  62.  
  63.     def on_save_clicked (self, button):
  64.         dialog = gtk.FileChooserDialog (parent=self.troubleshooter.get_window(),
  65.                                         action=gtk.FILE_CHOOSER_ACTION_SAVE,
  66.                                         buttons=('gtk-cancel',
  67.                                                  gtk.RESPONSE_CANCEL,
  68.                                                  'gtk-save',
  69.                                                  gtk.RESPONSE_OK))
  70.         dialog.set_do_overwrite_confirmation (True)
  71.         dialog.set_current_name ("troubleshoot.txt")
  72.         dialog.set_default_response (gtk.RESPONSE_OK)
  73.         response = dialog.run ()
  74.         dialog.hide ()
  75.         if response != gtk.RESPONSE_OK:
  76.             return
  77.  
  78.         f = file (dialog.get_filename (), "w")
  79.         f.write (self.buffer.get_text (self.buffer.get_start_iter (),
  80.                                        self.buffer.get_end_iter ()))
  81.         del f
  82.